home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROCS.ZIP / IPAUSE.ICN < prev    next >
Text File  |  1992-09-28  |  901b  |  34 lines

  1. ############################################################################
  2. #
  3. #    File:     ipause.icn
  4. #
  5. #    Subject:  Procedure to pause within an Icon program
  6. #
  7. #    Author:   Richard L. Goerwitz
  8. #
  9. #    Date:     June 3, 1991
  10. #
  11. ###########################################################################
  12. #
  13. #    Version:  1.2
  14. #
  15. ###########################################################################
  16. #
  17. #  ipause(i) - pause i milliseconds (accuracy depends on the resolution
  18. #  of the system clock).  Would be nice if Icon had a nap() function, so
  19. #  that we didn't just have to loop.  Of course, for operating systems
  20. #  that don't support all this multitasking nonsense, ipause() will do
  21. #  just fine.
  22. #
  23. ############################################################################
  24.  
  25.  
  26. procedure ipause(i)
  27.  
  28.     local T
  29.     T := &time
  30.     until &time >= (T + i)
  31.     return
  32.  
  33. end
  34.